/* Industrial Furnitures Specific Styles */

/* Hero Section */
.industrial-hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  margin-bottom: 60px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  text-align: center;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: center;
}

.hero-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
}

/* Info Section */
.industrial-info-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.info-content h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 25px;
}

.info-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.info-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Benefits Section */
.industrial-benefits-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.benefits-header {
  text-align: center;
  margin-bottom: 60px;
}

.benefits-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
}

.benefits-header p {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

/* Enhanced Benefits Grid Container with perfect alignment */
.benefits-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 0 !important;
  padding: 0 !important;
  align-items: stretch;
}

.benefit-item {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 350px;
  height: 100%;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.benefit-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.benefit-item h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
  flex-shrink: 0;
}

.benefit-item p {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
  flex-grow: 1;
  display: flex;
  align-items: center;
  text-align: center;
}

/* Products Section */
.industrial-products-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.products-header {
  text-align: center;
  margin-bottom: 60px;
}

.products-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
}

.products-header p {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

/* Enhanced Products Grid Container with perfect alignment */
.products-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 50px;
  margin: 0 !important;
  padding: 0 !important;
  align-items: stretch;
}

.product-item {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 600px;
}

.product-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.product-image {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.product-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-item:hover .product-image img {
  transform: scale(1.05);
}

.product-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.product-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
  flex-shrink: 0;
}

.product-content p {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.product-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  flex-grow: 1;
}

.product-content ul li {
  font-size: 0.95rem;
  color: #555;
  padding: 5px 0;
  position: relative;
  padding-left: 20px;
}

.product-content ul li:before {
  content: "✓";
  color: #28a745;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.cta-button {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #ffffff;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: auto;
  flex-shrink: 0;
}

.cta-button:hover {
  background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

.slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced Responsive Design with better breakpoints */
@media (max-width: 1200px) {
  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
  }

  .product-item {
    min-height: 550px;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .info-content h2,
  .benefits-header h2,
  .products-header h2 {
    font-size: 2rem;
  }

  .benefit-item,
  .product-item {
    margin-bottom: 20px;
  }

  .industrial-hero-section,
  .industrial-info-section,
  .industrial-benefits-section,
  .industrial-products-section {
    padding: 40px 0;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefit-item {
    min-height: 300px;
  }

  .product-item {
    min-height: 500px;
  }

  .product-image img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .product-content {
    padding: 20px;
  }

  .benefit-item {
    padding: 20px 15px;
    min-height: 280px;
  }

  .product-item {
    min-height: 450px;
  }

  .benefits-grid,
  .products-grid {
    gap: 15px;
  }

  .product-image img {
    height: 180px;
  }
}

/* Override Bootstrap column classes to prevent conflicts with CSS Grid */
.benefits-grid .col-md-4,
.benefits-grid .col-sm-6,
.benefits-grid .col-xs-12,
.products-grid .col-md-4,
.products-grid .col-sm-6,
.products-grid .col-xs-12 {
  width: auto !important;
  float: none !important;
  padding: 0 !important;
  margin: 0 !important;
}



